home *** CD-ROM | disk | FTP | other *** search
/ Freelog 70 / Freelog070.iso / Internet / EasyPHP / easyphp1-8_setup.exe / {app} / home / faq_php.php < prev    next >
Encoding:
PHP Script  |  2003-03-17  |  1.9 KB  |  63 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3. <head>
  4. <title>[EasyPHP] - Administration</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  6. <link rel="stylesheet" href="styles.css" type="text/css">
  7. </head>
  8. <body>
  9. <?php
  10. $titre = "presentation_php";
  11. function bouton($word){
  12.     $lenght=strlen($word);
  13.     $start = 0;
  14.     print("<table border='0' cellspacing='0' cellpadding='0'>");
  15.     print("<tr><td><img src='images_easyphp/bouton_gauche.gif' width='4' height='26'></td><td background='images_easyphp/bouton_fond.gif'>"); 
  16.     while($start<$lenght){
  17.         $car=substr($word,$start,1);
  18.         print("<img src='images_easyphp/lettre_".$car.".gif' border='0'>");
  19.         $start++;
  20.     } 
  21.     print("</td><td><img src='images_easyphp/bouton_droit.gif' width='4' height='26'></td></tr></table>");
  22. }
  23. ?>
  24.  
  25. <table width="400" cellspacing="0" cellpadding="0" border="0" align="center">
  26.   <tr>
  27. <td>
  28. <a href="index.php"><img src="images_easyphp/titre_easyphp_admin.gif" width="387" height="116" border="0"></a>
  29. </td>
  30. </tr>
  31. <tr>
  32. <td>
  33. <?php bouton($titre) ?>
  34. </td>
  35. </tr>
  36. </table>
  37.  
  38. <br><br>
  39.  
  40. <table border="0" align="center" cellpadding="0" cellspacing="0">
  41.   <tr>
  42. <td class="text1">
  43. <pre>
  44. What is PHP?
  45.  
  46. PHP is a widely-used general-purpose scripting language that is
  47. especially suited for Web development and can be embedded into HTML.
  48. If you are new to PHP and want to get some idea of how it works,
  49. try the introductory tutorial (http://www.php.net/tut.php).
  50. After that, check out the online manual (http://www.php.net/docs.php),
  51. and the example archive sites and some of the other resources
  52. available in the links section (http://www.php.net/links.php). 
  53. </pre>
  54. </td>
  55. </tr>
  56. <tr>
  57. <td class="text2"><div align="right">extrait - source : <a href="http://www.php.net" target="_blank" class="text2">php</a></div></td>
  58. </tr>
  59. </table>
  60.  
  61. </body>
  62. </html>
  63.